google search
https://gyazo.com/0c91cdc1d8d6b122bac1627f4c7f2b06
選択した部分をググれる! それだけ
[]タグで囲ってある部分もそのまま選択してうまくいくようにした
テスト用
yahoo
yahoo
yahoo
yahoo
code:script.js
scrapbox.PopupMenu.addButton({
title: 'google',
onClick: text => {
if( text.match(/^\[\S*\]$/g) ){ text = text.replace(/\[/g, '');
}else{
text = text.replace(/\[\S*/g, ''); }
text = text.replace(/\]/g, '').replace(/^\s+/, '');
let uri = encodeURI(text.replace(' ', '+'));
window.open(https://google.co.jp/search?q=${uri});
}
})